home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Programming / MuManual / VBCC / Developer / LibSrc / MC680x0Base.c < prev    next >
C/C++ Source or Header  |  1999-11-30  |  324b  |  18 lines

  1. #include <exec/libraries.h>
  2. #include <proto/exec.h>
  3.  
  4. struct Library *MC680x0Base = NULL;
  5. extern unsigned long _MC680x0BaseVer;
  6.  
  7. void _INIT_5_MC680x0Base()
  8. {
  9.   if (!(MC680x0Base = OpenLibrary("680x0.library",_MC680x0BaseVer)))
  10.     exit(20);
  11. }
  12.  
  13. void _EXIT_5_MC680x0Base()
  14. {
  15.   if (MC680x0Base)
  16.     CloseLibrary(MC680x0Base);
  17. }
  18.